github.com/klauspost/compress/zstd.decoderOptions.concurrent (field)

12 uses

	github.com/klauspost/compress/zstd (current package)
		decoder.go#L107: 	d.decoders = make(chan *blockDec, d.o.concurrent)
		decoder.go#L108: 	for i := 0; i < d.o.concurrent; i++ {
		decoder.go#L223: 	if d.o.concurrent == 1 {
		decoder.go#L227: 	d.current.output = make(chan decodeOutput, d.o.concurrent)
		decoder.go#L659: 	var seqDecode = make(chan *blockDec, d.o.concurrent)
		decoder.go#L660: 	var seqExecute = make(chan *blockDec, d.o.concurrent)
		decoder_options.go#L20: 	concurrent      int
		decoder_options.go#L34: 		concurrent:      runtime.GOMAXPROCS(0),
		decoder_options.go#L38: 	if o.concurrent > 4 {
		decoder_options.go#L39: 		o.concurrent = 4
		decoder_options.go#L77: 		if o.resetOpt && newVal != o.concurrent {
		decoder_options.go#L80: 		o.concurrent = newVal